home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / visulztn / sphinx / sphinx.lha / files / vidlas < prev    next >
Encoding:
Text File  |  1993-03-27  |  407 b   |  11 lines

  1. #  spooler to Hewlett Packard laserjet black and white printer: SPHINX pipe the file to this command
  2. cop=$2
  3. file=${1:-LLAS}
  4.     case $2 in
  5.              [1-9]*)  echo 'VOUS AVEZ DEMANDE '$cop' COPIES'
  6.                     cat $file | lp -dlaser2 -onobanner -oraw -n$cop ;;
  7.         "" )  cat $file | lp -dlaser2 -onobanner -oraw -n1 ;;
  8.                    *  )  cat $file | lp -dlaser2 -onobanner -oraw -n1 ;;
  9.     esac
  10. exit 0
  11.